home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form8
- Caption = "Form8"
- ClientHeight = 795
- ClientLeft = 3690
- ClientTop = 4170
- ClientWidth = 4680
- LinkTopic = "Form8"
- ScaleHeight = 795
- ScaleWidth = 4680
- Begin VB.CommandButton Command1
- Caption = "Grow"
- Height = 615
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 4455
- End
- Attribute VB_Name = "Form8"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If Form8.Height = 1200 Then
- Form8.Height = 3600
- Form8.Command1.Caption = "Shrink"
- Form8.Height = 1200
- Form8.Command1.Caption = "Grow"
- End If
- End Sub
-